home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / Business / Dazzler / DAZZLER.Z / CVariableList.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-26  |  642 b   |  22 lines

  1. class CVariableList extends CObList {
  2.    void AddTail(CVariable var1) {
  3.       ((CObList)this).addElement(var1);
  4.    }
  5.  
  6.    CVariable GetHead() {
  7.       return (CVariable)((CObList)this).start();
  8.    }
  9.  
  10.    void DeleteAll() {
  11.       ((CObList)this).RemoveAll();
  12.    }
  13.  
  14.    boolean Delete(CVariable var1) {
  15.       return ((CObList)this).removeElement(var1);
  16.    }
  17.  
  18.    CVariable GetNext() {
  19.       return (CVariable)((CObList)this).next();
  20.    }
  21. }
  22.